Answer:

No--pixels are so small it is hard to see them. White pixels are the most easy to see since they are the brightest.

More on the COLOR Statement

The COLOR statement looks like this:

COLOR C      ' C is a color number, 
             ' for screen 12 it is 0 up to 15.
Here is a list of numbers and colors. This list works for screen 12 and some others (but not all screens).

Color NumberColor Color NumberColor
0Black 8Gray
1Blue 9Light Blue
2Green 10Light Green
3Cyan 11Light Cyan
4Red 12Light Red
5Magenta 13Light Magenta
6Brown 14Yellow
7White 15Bright White

QUESTION 9:

What will the following program show on the graphics screen?

' Setting pixels to color 2 (Green)
SCREEN 12
COLOR 2
PSET ( 1, 3 )  ' set column 1 row 3
PSET ( 3, 3 )  ' set column 3 row 3
PSET ( 5, 3 )  ' set column 5 row 3
PSET ( 7, 3 )  ' set column 7 row 3
END
Try to make a sketch of your answer on a piece of scrap paper.